In [1]:
    
%matplotlib inline
from ggplot import *
    
In [2]:
    
ggplot(diamonds, aes(x='price')) + geom_histogram()
    
    
    Out[2]:
In [3]:
    
ggplot(diamonds, aes(x='price')) + geom_histogram() + theme_gray()
    
    
    Out[3]:
In [4]:
    
ggplot(diamonds, aes(x='price')) + geom_histogram() + theme_bw()
    
    
    Out[4]:
In [5]:
    
ggplot(diamonds, aes(x='price')) + geom_histogram() + theme_xkcd()
    
    
    Out[5]:
In [6]:
    
ggplot(diamonds, aes(x='price')) + geom_histogram() + theme_538()
    
    
    Out[6]:
In [ ]: